home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / amitcp / netinet / tcp_debug.h < prev    next >
C/C++ Source or Header  |  1993-08-12  |  3KB  |  83 lines

  1. /*
  2.  * $Id: tcp_debug.h,v 1.3 1993/05/16 23:22:24 ppessi Exp $
  3.  *
  4.  * HISTORY
  5.  * $Log: tcp_debug.h,v $
  6.  * Revision 1.3  1993/05/16  23:22:24  ppessi
  7.  * Reduced size of array tcp_debug.
  8.  *
  9.  * Revision 1.2  1993/03/03  21:25:47  jraja
  10.  * Moved data definitions to tcp_debug.c.
  11.  *
  12.  * Revision 1.1  92/11/17  16:30:20  16:30:20  jraja (Jarno Tapio Rajahalme)
  13.  * Initial revision
  14.  */
  15.  
  16. /*
  17.  * Copyright (c) 1982, 1986 Regents of the University of California.
  18.  * All rights reserved.
  19.  *
  20.  * Redistribution and use in source and binary forms, with or without
  21.  * modification, are permitted provided that the following conditions
  22.  * are met:
  23.  * 1. Redistributions of source code must retain the above copyright
  24.  *    notice, this list of conditions and the following disclaimer.
  25.  * 2. Redistributions in binary form must reproduce the above copyright
  26.  *    notice, this list of conditions and the following disclaimer in the
  27.  *    documentation and/or other materials provided with the distribution.
  28.  * 3. All advertising materials mentioning features or use of this software
  29.  *    must display the following acknowledgement:
  30.  *    This product includes software developed by the University of
  31.  *    California, Berkeley and its contributors.
  32.  * 4. Neither the name of the University nor the names of its contributors
  33.  *    may be used to endorse or promote products derived from this software
  34.  *    without specific prior written permission.
  35.  *
  36.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  37.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  39.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  40.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  41.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  42.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  43.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  44.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  45.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  *
  48.  *    @(#)tcp_debug.h    7.4 (Berkeley) 6/28/90
  49.  */
  50.  
  51. #ifndef TCP_DEBUG_H
  52. #define TCP_DEBUG_H
  53.  
  54. struct    tcp_debug {
  55.     n_time    td_time;
  56.     short    td_act;
  57.     short    td_ostate;
  58.     caddr_t    td_tcb;
  59.     struct    tcpiphdr td_ti;
  60.     short    td_req;
  61.     struct    tcpcb td_cb;
  62. };
  63.  
  64. #define    TA_INPUT     0
  65. #define    TA_OUTPUT    1
  66. #define    TA_USER        2
  67. #define    TA_RESPOND    3
  68. #define    TA_DROP        4
  69.  
  70. /*
  71.  * Data definitions moved to tcp_debug.c
  72.  */
  73.  
  74. #ifdef TANAMES
  75. extern char    *tanames[];
  76. #endif
  77.  
  78. #define    TCP_NDEBUG 10
  79. extern struct    tcp_debug tcp_debug[TCP_NDEBUG];
  80. extern int    tcp_debx;
  81.  
  82. #endif /* !TCP_DEBUG_H */
  83.